一、Apache下伪静态的配置方法
Tipask3.0源码中自带了apache的伪静态文件,在public目录下,伪静态文件是.htaccess.
如果apache下伪静态依然有问题的话可以将下面的伪静态规则添加到apache的配置文件中。
Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L]
二、Nginx下的伪静态配置方法:
在 Nginx 中,将下面的指令放到站点配置文件中就可以了。
location / { try_files $uri $uri/ /index.php?$query_string; }
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!